<xs:simpleType name="Orderability" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation xml:lang="de">
<dl>
<dt>Kann der Artikel bestellt werden?</dt>
<dt>71 = Bestellbar</dt>
<dt>72 = Nicht bestellbar</dt>
</dl>
</xs:documentation>
<xs:documentation xml:lang="en">
<dl>
<dt>Is it possible to order the product</dt>
<dt>71 = yes</dt>
<dt>72 = No</dt>
</dl>
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:maxLength value="2" />
<!-- <xs:enumeration value="71"> </xs:enumeration> -->
<!-- <xs:enumeration value="72"> </xs:enumeration> -->
</xs:restriction>
</xs:simpleType>
|